home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
223_01
/
isgraph.c
< prev
next >
Wrap
Text File
|
1980-01-01
|
256b
|
8 lines
/*
** return 'true' if c is a graphic character
** (33-126)
*/
isgraph(c) int c; {
return (c>=33 && c<=126);
}